home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / misc / unpl3951.lha / UnpackLibV39.51 / Programmers_Docs / UnpackLib_Docs next >
Text File  |  1992-09-02  |  31KB  |  848 lines

  1. ***************************************************************************
  2. *                        UNPACK.LIBRARY V39.51 DOC                        *
  3. *                                                                         *
  4. *                                                                         *
  5. *                             Update 03-04-94                             *
  6. *                                                                         *
  7. *                                                                         *
  8. *                          SAFE HEX INTERNATIONAL                         *
  9. ***************************************************************************
  10.  
  11.  
  12. Welcome  to  the release version of this library. I hope it's a library you
  13. can  use  in your virus killer or whatever you are doing. One of the things
  14. this library can do, is to help a viruskiller programmer to scan files that
  15. are crunched.
  16.  
  17.  
  18.      o  This  library  is  copyrighted  by  SHI  and  may  NOT  be  used in
  19.         commercial programs without a written permission from SHI.
  20.  
  21.      o  SHI  members can of course use this library for free. (But remember
  22.         to get a written permission.
  23.  
  24.      o  All  Shareware programmers can be SHI members, if they full-fill to
  25.         support our anti-virus work. (But remember to send your address and
  26.         program idea to SHI, to get a written permission).
  27.  
  28.  
  29. It's  forbidden  to  reassemble  (reverse engining) in any way this library
  30. code.  All the ideas to the way we unpacks files are copyrighted by SHI. If
  31. you  don't  respect  our  copyright - or, if you use this library without a
  32. written permission, SHI will contact the police to stop you.
  33.  
  34. Please  add  the  "WantedHelp"  (a  list  containing  wanted  crunchers for
  35. update), and remember to credit the author (Thomas Neumann) and SHI in your
  36. program as stated in the following:
  37.  
  38. ---------------------------------------------------------------------------
  39.  
  40. ABOUT SAFE HEX INTERNATIONAL
  41. If you know a virus programmer you can get a reward of $ 1000 for supplying
  42. his  name  and  address.  The fact is that the law punishes data crime very
  43. severely. (5 years in jail in most countries).
  44.  
  45. We  are  an international group with more than 500 members who have started
  46. trying to stop the spread of virus. Let me give you some example:
  47.  
  48.         1. Our motto is: "Safe Hex", who dares do anything else today?".
  49.         2. A virus bank containing more than 1800 Amiga and PC viruses for
  50.            supporting good shareware antivirus programs.
  51.         3. We help people to get money back lost by virus infection.
  52.         4. We write articles about virus problems for about 20 computer
  53.            magazines worldwide.
  54.         5. We release the newest and the best virus killers around from
  55.            about 25 wellknown programmers worldwide.
  56.         6. We have more than 35 PC and Amiga "Virus Centers" worldwide
  57.            where you can get free virus help by phoning our "Hotline", and
  58.            the newest killers translated in your own language at very
  59.            little cost.
  60.  
  61. For more information contact:
  62.  
  63.         SAFE HEX INTERNATIONAL            (Please send 2 "Coupon-Response
  64.         Erik Loevendahl Soerensen         International" and a self addres-
  65.         Snaphanevej 10                    sed envelope, if you want infor-
  66.         DK-4720 Praestoe                  mation about SHI by letter).
  67.         Denmark
  68.         Phone: + 45 55 99 25 12
  69.         Fax  : + 45 55 99 34 98
  70.  
  71. ---------------------------------------------------------------------------
  72.  
  73. ***************************************************************************
  74. *                            Table of contents                            *
  75. ***************************************************************************
  76.  
  77. unpack.library/AllocCInfo()
  78. unpack.library/DetermineFile()
  79. unpack.library/FreeCInfo()
  80. unpack.library/FreeFile()
  81. unpack.library/LoadFile()
  82. unpack.library/NewUnpackNum()
  83. unpack.library/SendCmd()
  84. unpack.library/TestHunk()
  85. unpack.library/Unpack()
  86. unpack.library/UnpackList()
  87. unpack.library/UnpackListNext()
  88. unpack.library/UnuseDrive()
  89. unpack.library/UseDrive()
  90.  
  91. ---------------------------------------------------------------------------
  92.  
  93. ***************************************************************************
  94. *                    Offsets and functions destiptions                    *
  95. ***************************************************************************
  96.  
  97.  
  98. AllocCInfo(34.0)                                           AllocCInfo(34.0)
  99.  
  100.  
  101. NAME
  102.         AllocCInfo - allocates an info structure.
  103.  
  104. SYNOPSIS
  105.         info = AllocCInfo ()
  106.          D0       -30
  107.  
  108.         APTR AllocCInfo(VOID);
  109.  
  110. FUNCTION
  111.         AllocCInfo()  allocates  an info structure the library uses when it
  112.         unpacks files. You just have to call this function in the beginning
  113.         of your program and then free it again with FreeCInfo() at the end.
  114.         I  have  made  this  function,  because  in future versions of this
  115.         library,  the  structure  will be bigger. Your program will then be
  116.         compatible for any future versions of this library.
  117.  
  118. INPUTS
  119.         None.
  120.  
  121. OUTPUTS
  122.         info  -  is a pointer to the allocated info structure. If there has
  123.                  occured an error, a zero is returned.
  124.  
  125. STRUCTURE
  126.         This is how the Info Structure is build:
  127.  
  128.         STRUCTURE UnpackInfo,0
  129.         APTR    UI_Filename
  130.         APTR    UI_Path
  131.         APTR    UI_Jump
  132.         APTR    UI_CruncherName
  133.         APTR    UI_DecrunchAdr
  134.         LONG    UI_DecrunchLen
  135.         UWORD   UI_ErrorNum
  136.         UWORD   UI_CrunchNum
  137.         UBYTE   UI_CrunchType
  138.         UBYTE   UI_Flag
  139.         APTR    UI_LoadNamePoi
  140.         LONG    UI_CrunchLen
  141.         APTR    UI_UserData             ;V35+
  142.         APTR    UI_TrackJump            ;V36+
  143.         APTR    UI_TrkErrJump           ;V36+
  144.         LONG    UI_Offset               ;V36+
  145.         UWORD   UI_Track                ;V36+
  146.         APTR    UI_ErrorMsg             ;V37+
  147.         APTR    UI_CrunchAdr            ;V37+
  148.         APTR    UI_LhaPattern           ;V38+
  149.         BOOL8   UI_UseFilenamePointer   ;V39+
  150.  
  151. ; This Is Private, Do NOT Touch
  152.  
  153.         UBYTE   UI_Pad
  154.         LONG    UI_CrunchLenTemp
  155.         LONG    UI_FileHandler
  156.         LONG    UI_Lock
  157.         LONG    UI_OldLock
  158.         APTR    UI_InfoAdr
  159.         APTR    UI_UnpackPoi
  160.         ULONG   UI_Temp
  161.         STRUCT  UI_Data,4*4             ;V35+
  162.         STRUCT  UI_LoadName,128
  163.         STRUCT  UI_ExecuteString,256
  164.         LABEL   UnpackInfo_SIZEOF
  165.  
  166.  
  167.         NOTE:
  168.         -----
  169.  
  170.         The private area is a bad idea to use, because the different fields
  171.         will maybe be moved around in future versions.
  172.  
  173.  
  174.         UI_Filename     is a pointer to the filename you want to scan.
  175.  
  176.         UI_Path         is  a  pointer  to a zero-terminated path where the
  177.                         library have to unpack archive files, such as a LHA
  178.                         archive. Please select a path where you haven't got
  179.                         some  important  data,  because  ALL  files will be
  180.                         deleted in the path if the DELETE flag is on.
  181.  
  182.         UI_Jump         This  is  a  pointer  to your scan routine. If this
  183.                         pointer are zero, no jump will be made.
  184.  
  185.         UI_CruncherName This is a pointer to the crunchers name the file is
  186.                         crunched with. The name are zero-terminated.
  187.  
  188.         UI_DecrunchAdr  This  is  the start address of the decrunched file.
  189.                         Your  scan routine just have to read this field and
  190.                         the UI_DecrunchLen field and scan that memory.
  191.  
  192.         UI_DecrunchLen  This is the length of the decrunched file.
  193.  
  194.         UI_ErrorNum     If  an  error  occur, the error number is stored in
  195.                         this   field.   See  the  unpack.i  file  for  more
  196.                         information.
  197.  
  198.         UI_CrunchNum    Here  is  the cruncher number stored. Each cruncher
  199.                         has  a  number  so  you can find out which cruncher
  200.                         there are used on the file.
  201.  
  202.         UI_CrunchType   Here   is  a  number  that  tells  about  the  file
  203.                         (archive, data or object file). Bit 7 indicate that
  204.                         the file are encrypted.
  205.  
  206.         UI_Flag         You  can  select  some different things the library
  207.                         has  to  do  when  it tests the file. See below for
  208.                         more info.
  209.  
  210.         UI_LoadNamePoi  This  is  just  a pointer to the UI_LoadName field.
  211.                         Use  this if you want to use the UI_LoadName field,
  212.                         because the field will be moved in future versions.
  213.  
  214.         UI_LoadName     Here  is  the filename stored, the library is about
  215.                         to decrunch, if the file is an archive.
  216.  
  217.         UI_CrunchLen    This is the length of the crunched file.
  218.  
  219.         UI_UserData     This  value  will be stored in A1 when the Unpack()
  220.                         function jump through the UI_Jump field. (V35+)
  221.  
  222.         UI_TrackJump    This field have the same function as UI_Jump, exept
  223.                         that  the library will only jump through this field
  224.                         when its unpack a track crunched file, such as DMS.
  225.                         The  library  will jump for every track it unpacks.
  226.                         You  have  to  return a return value in D0. You can
  227.                         select  between  these  values: 0 means every thing
  228.                         are   okay,   just   continue  and  -1  means  stop
  229.                         unpacking.  If this field are zero, no jump will be
  230.                         made (V36+).
  231.  
  232.         UI_TrkErrJump   The  library  will  jump through this pointer if an
  233.                         error  occurs.  There  are a lot of errors, such as
  234.                         checksum  error  etc.  You  routine  can  read  the
  235.                         UI_ErrorNum field in the info structure to see what
  236.                         went  wrong.  In  D0  you  have  to return the same
  237.                         values as in UI_TrackJump (V36+).
  238.  
  239.         UI_Offset       Here  will  be  stored the offset on a disk, ex. if
  240.                         the library just have unpacked track 40, there will
  241.                         be  stored  in this field: 40*22*512. You tracksave
  242.                         routine can read this field, UI_DecrunchAdr and the
  243.                         UI_DecrunchLen  fields  and just call the SendCmd()
  244.                         function with these values as parameters (V36+).
  245.  
  246.         UI_Track        Here  are  stored  the  track the library just have
  247.                         unpacked (V36+).
  248.  
  249.         UI_ErrorMsg     If  an error occurs, a pointer to the error message
  250.                         will be stored here (V37+).
  251.  
  252.         UI_CrunchAdr    This  is a pointer to the crunched data. If you use
  253.                         the  NoLoad  flag,  you  have  to  store  the start
  254.                         address and the length of the crunched data in this
  255.                         field and the UI_CrunchLen field (V37+).
  256.  
  257.         UI_LhaPattern   Here can you store a pointer to a Lha pattern. This
  258.                         means,  the  zero-terminated  string  this  pointer
  259.                         points to, will be copied at the end of the execute
  260.                         string. If you ex. have a string containing: "a#?",
  261.                         the  unpack.library  will  only  unpack  all  files
  262.                         starting with an "a". Zero in this pointer means no
  263.                         pattern (V38+).
  264.  
  265.                         NOTE:  This pointer will be ignored if you have set
  266.                         the UFB_OneFile bit in the UI_Flag.
  267.  
  268.         UI_UseFilenamePointer
  269.                         This  boolean  flag  will  be set to true, when you
  270.                         must    use    the   filename   pointed   to   with
  271.                         UI_LoadNamePoi.  If  false, you have to use you own
  272.                         filename.  This  flag  will  be  set  to  true when
  273.                         unpacking a file in an archive and the file type is
  274.                         not an archive. See example (V39+).
  275.  
  276.  
  277. The flag have the following functions:
  278.  
  279.  
  280. Name         Bit             Function
  281. ---------------------------------------------------------------------------
  282. UFB_OneFile  0          Select  to  unpack  one file at a time or the whole
  283.                         archive. If set, one file is selected.
  284.  
  285. UFB_Delete   1          Delete  files  after scanning. Set = Delete. If you
  286.                         set  this bit on, ALL files AND directories will be
  287.                         deleted,  not  only  the files there were stored in
  288.                         the archive.
  289.  
  290. UFB_NoFree   2          If this bit is set, the decrunched file will NOT be
  291.                         freed  from memory after the Unpack() function have
  292.                         called through the UI_Jump pointer. If you set this
  293.                         bit,  you  have to free the memory by yourself with
  294.                         the FreeFile() function. (V35+)
  295.  
  296. UFB_Banner   3          This  bit are the give banner bit. If set, you will
  297.                         get the banner text in UI_DecrunchAdr. Your routine
  298.                         the  UI_TrackJump  pointer  points to, have to test
  299.                         the  UI_Offset field to see it's a banner or normal
  300.                         track there are given. If the UI_Offset are -1, its
  301.                         a banner. (V36+)
  302.  
  303. UFB_NoLoad   4          If  this  bit  are  set,  the  DetermineFile()  and
  304.                         Unpack()  functions  will  not  load  the file into
  305.                         memory,  but  use the UI_CrunchAdr and UI_CrunchLen
  306.                         field  in  the  Unpack  Info  structure  to get the
  307.                         crunched data (V37+).
  308.  
  309. UFB_Protect  5          If you set this bit and the UFB_NoLoad are cleared,
  310.                         the   DetermineFile()   function  will  change  the
  311.                         protections  bit  on the file to determine. It will
  312.                         set the RWED bits (V38+).
  313.  
  314.              6-7        Reserved
  315.  
  316. BUGS
  317.         None known.
  318.  
  319. SEE ALSO
  320.         FreeCInfo()
  321.  
  322. ---------------------------------------------------------------------------
  323.  
  324. DetermineFile(34.0)                                     DetermineFile(34.0)
  325.  
  326.  
  327. NAME
  328.         DetermineFile - scans  a  file  to find out which cruncher that are
  329.                         used.
  330.  
  331. SYNOPSIS
  332.         success = DetermineFile (info, filename)
  333.           D0          -42         A0      A1
  334.  
  335.         BOOL DetermineFile (APTR, char *);
  336.  
  337. FUNCTION
  338.         DetermineFile()  scans  a  file to find out which cruncher the file
  339.         are  crunched with. If the library can't find out, an error message
  340.         is  returned.  You  have  to  call  this  function  first, then the
  341.         Unpack() function, if no error has occured.
  342.  
  343. INPUTS
  344.         info     - is  the  memory  address  you  got from the AllocCInfo()
  345.                    function.
  346.  
  347.         filename - is  a  pointer  to  the  filename  you want to scan. The
  348.                    filename has to be zero-terminated.
  349.  
  350. OUTPUTS
  351.         success  - is an indicator that tells about the operation. If every
  352.                    thing is okay, a non-zero value is returned, else a zero
  353.                    will  be  returned. If you get an error, you can look at
  354.                    the  UI_ErrorNum  flag in the info structure to see what
  355.                    went wrong.
  356.  
  357. BUGS
  358.         None known.
  359.  
  360. SEE ALSO
  361.         Unpack()
  362.  
  363. ---------------------------------------------------------------------------
  364.  
  365. FreeCInfo(34.0)                                             FreeCInfo(34.0)
  366.  
  367.  
  368. NAME
  369.         FreeCInfo - frees the info structure again.
  370.  
  371. SYNOPSIS
  372.         FreeCInfo (info)
  373.            -36      A0
  374.  
  375.         void FreeCInfo (APTR);
  376.  
  377. FUNCTION
  378.         FreeCInfo()  frees  the info structure again. You have to call this
  379.         function at the end of your program.
  380.  
  381. INPUTS
  382.         info  - is  the  memory  address  you  got  from  the  AllocCInfo()
  383.                 function.  If the memory address is zero, you will NOT take
  384.                 a  trip  to  India  (and visit the GURU) when you call this
  385.                 function.
  386.  
  387. OUTPUTS
  388.         None.
  389.  
  390. BUGS
  391.         None known.
  392.  
  393. SEE ALSO
  394.         AllocCInfo()
  395.  
  396. ---------------------------------------------------------------------------
  397.  
  398. FreeFile(34.20)                                             FreeFile(34.20)
  399.  
  400.  
  401. NAME
  402.         FreeFile - frees a file from memory.
  403.  
  404. SYNOPSIS
  405.         FreeFile (info)
  406.           -84      A0
  407.  
  408.         void FreeFile (APTR);
  409.  
  410. FUNCTION
  411.         You have to call this function after you have called the LoadFile()
  412.         function  and  are  finished with the file. This function frees the
  413.         memory again.
  414.  
  415.         NOTE:  You MUST call this function instead of freeing the memory by
  416.         yourself!!
  417.  
  418. INPUTS
  419.         info - is   the  memory  address  you  got  from  the  AllocCInfo()
  420.                function.  You  can  call  always this function, even if the
  421.                LoadFile() function returned an error.
  422.  
  423. OUTPUTS
  424.         None.
  425.  
  426. BUGS
  427.         None known.
  428.  
  429. SEE ALSO
  430.         LoadFile()
  431.  
  432. ---------------------------------------------------------------------------
  433.  
  434. LoadFile(34.20)                                             LoadFile(34.20)
  435.  
  436.  
  437. NAME
  438.         LoadFile - loads a file into memory.
  439.  
  440. SYNOPSIS
  441.         success = LoadFile (info)
  442.           D0        -78      A0
  443.  
  444.         BOOL LoadFile (APTR);
  445.  
  446. FUNCTION
  447.         This  function allocate some memory with the files length and loads
  448.         the file into it. The filename are taken from the UI_Filename field
  449.         in  the  info  structure.  The  length  and address of the file are
  450.         stored in UI_DecrunchLen and UI_DecrunchAdr.
  451.  
  452.         V36.30:
  453.         -------
  454.  
  455.         If  the library runs under KS 37+, all caches will be cleared after
  456.         the file are loaded into the memory.
  457.  
  458. INPUTS
  459.         info    - is  the  memory  address  you  got  from the AllocCInfo()
  460.                   function.
  461.  
  462. OUTPUTS
  463.         success - is  an indicator that tells about the operation. If every
  464.                   thing  is  okay, the file length is returned, else a zero
  465.                   will  be returned and the allocated memory will be freed.
  466.                   If you get an error, you can look at the UI_ErrorNum flag
  467.                   in the info structure to see what went wrong.
  468.  
  469. BUGS
  470.         None known.
  471.  
  472. SEE ALSO
  473.         FreeFile()
  474.  
  475. ---------------------------------------------------------------------------
  476.  
  477. NewUnpackNum(37.32)                                     NewUnpackNum(37.32)
  478.  
  479.  
  480. NAME
  481.         NewUnpackNum - gives the number of unpackers in a structure.
  482.  
  483. SYNOPSIS
  484.         number = NewUnpackNum ()
  485.           A0        -108
  486.  
  487.         APTR NewUnpackNum (void);
  488.  
  489. FUNCTION
  490.         NewUnpackNum()  counts  the  number  of  unpackers  the library can
  491.         determine  and  unpack.  You  will  get  two  different  numbers of
  492.         unpackers. The first one (types) are the numbers of different types
  493.         the  library  can  unpack,  example  PowerPacker  Data, PowerPacker
  494.         Library etc. The second one (unpackers) is the number of unpackers,
  495.         example PowerPacker, Lha, Imploder etc.
  496.  
  497. INPUTS
  498.         None.
  499.  
  500. OUTPUTS
  501.         number - a pointer to a structure that look like this:
  502.  
  503.                 STRUCTURE NumberStruct,0
  504.                 UWORD   NS_Version      ;Library Version
  505.                 UWORD   NS_Revision     ;Library Revision
  506.                 UWORD   NS_Types
  507.                 UWORD   NS_Unpackers
  508.                 LABEL   NumberStruct_SIZEOF
  509.  
  510. BUGS
  511.         None known.
  512.  
  513. ---------------------------------------------------------------------------
  514.  
  515. SendCmd(36.30)                                               SendCmd(36.30)
  516.  
  517.  
  518. NAME
  519.         SendCmd - sends a command to a devive.
  520.  
  521. SYNOPSIS
  522.         error = SendCmd (dinfo, address, offset, length, cmd)
  523.          D0      -102     A0      A1       D1      D2    D0
  524.  
  525.         UBYTE SendCmd (APTR, APTR, ULONG, ULONG, UBYTE);
  526.  
  527. FUNCTION
  528.         The  only  thing  this  function does, is send the command with the
  529.         parameters  to  the  device  opened by the UseDrive() function. The
  530.         command will be sent by the DoIO() function.
  531.  
  532. INPUTS
  533.         dinfo   - is a pointer returned by the UseDrive() function.
  534.  
  535.         address - is a pointer to the data area.
  536.  
  537.         offset  - is the offset on the disk.
  538.  
  539.         length  - is the number of bytes to send.
  540.  
  541.         cmd     - is the command to send, like a read, write or update.
  542.  
  543. OUTPUTS
  544.         error   - is the error number returned by the device.
  545.  
  546. BUGS
  547.         None known.
  548.  
  549. SEE ALSO
  550.         UseDrive(), UnuseDrive()
  551.  
  552. ---------------------------------------------------------------------------
  553.  
  554. TestHunk(34.1)                                               TestHunk(34.1)
  555.  
  556.  
  557. NAME
  558.         TestHunk - tests the hunk structure in a file.
  559.  
  560. SYNOPSIS
  561.         success = TestHunk (address)
  562.           D0        -54       A0
  563.  
  564.         BOOL TestHunk (APTR);
  565.  
  566. FUNCTION
  567.         TestHunk()  tests  a  file  for  the hunk structure. You have to be
  568.         sure,  that  the file you want to test is an object file, else this
  569.         routine  will  return  an  error. You can check this by look in the
  570.         UI_CrunchType  flag  in  the info structure. You don't need to call
  571.         this function by yourself before you calling the Unpack() function,
  572.         because  the  Unpack()  function does that by itself. I'm not quite
  573.         sure  it  handles  the overlay hunk correctly, but it should handle
  574.         it.  If  you  find  a file you know are okay and this function says
  575.         it's defect, please send me the file so I can find the error.
  576.  
  577. INPUTS
  578.         address - is the start address of the file you want to test.
  579.  
  580. OUTPUTS
  581.         success - is  an indicator that tells about the operation. If every
  582.                   thing  is okay, a non-zero value is returned, else a zero
  583.                   will be returned.
  584.  
  585. BUGS
  586.         None known.
  587.  
  588. ---------------------------------------------------------------------------
  589.  
  590. Unpack(34.0)                                                   Unpack(34.0)
  591.  
  592.  
  593. NAME
  594.         Unpack - unpacks the file.
  595.  
  596. SYNOPSIS
  597.         success = Unpack (info)
  598.           D0       -48     A0
  599.  
  600.         BOOL Unpack (APTR);
  601.  
  602. FUNCTION
  603.         Unpack()  loads  the file into memory and unpacks it. When the file
  604.         is  unpacked,  the library will jump through the UI_Jump pointer to
  605.         your scan routine. If the UI_Jump contains a zero, the library will
  606.         not  jump.  All  what  your  scan  routine has to do, is to get the
  607.         UI_DecrunchAdr  and UI_DecrunchLen from the info structure and scan
  608.         that memory. If the file is an archive (Lha, zoo), the library will
  609.         unpack  the  archive  and  then read one file at a time and jump to
  610.         your scan routine.
  611.         If  you  need  a password to unpack a file, the library will open a
  612.         little  window  where  it asks for the password. The window will be
  613.         opened  on  the active screen, so if you open a screen by yourself,
  614.         the window will appear on it (if it's active).
  615.  
  616.         NOTE:
  617.         -----
  618.  
  619.         After  an  archive  is  unpacked  and  scanned,  all  the files and
  620.         directories  in  the  path you have selected will be deleted if the
  621.         DELETE  flag  is  on,  not  just the files there were stored in the
  622.         archive,  but  ALL  files will be deleted, so be sure to use a temp
  623.         directory or something like that.
  624.  
  625.         V35.22:
  626.         -------
  627.  
  628.         When this function jumps through the UI_Jump pointer, the following
  629.         registers will have these pointers:
  630.  
  631.         A0 = The start address of your routine (Unpack() makes a jsr (a0)).
  632.         A1 = Your pointer stored in the UI_UserData field.
  633.         A4 = The start address of the info structure.
  634.  
  635.         V36.30:
  636.         -------
  637.  
  638.         If the library runs under KS V37+, all caches will be cleared after
  639.         the decrunching.
  640.  
  641.         Track Crunched Files:
  642.         ---------------------
  643.  
  644.         This  function  will  jump  through UI_TrackJump instead of UI_Jump
  645.         when  it  unpacks  a  track crunched file. Such files are ex. a DMS
  646.         file.  The  routine have to return a value in D0. The values can be
  647.         0 to indicate that every things are ok and -1 to stop unpacking.
  648.  
  649.         V38.40:
  650.         -------
  651.  
  652.         This  function  are  now  made  recursive.  That means it will call
  653.         itself  until  the  file  can't  be decrunched any more. Now it can
  654.         unpack  a  lha  file in a lha file or a file crunched with imploder
  655.         and  powerpacker  etc.  If you have ex. select to unpack a lha file
  656.         at  RAM:,  the  first lha file will be unpacked there. If there are
  657.         more  lha  files,  the  next one will be unpacked in RAM:-/ and the
  658.         next in RAM:-/-/ etc.
  659.  
  660.         NOTE:
  661.         -----
  662.  
  663.         The  recursive  process  will  take a lot of stack and memory. Each
  664.         time  the  function  will  call itself, it will allocate a new info
  665.         structure and 256 bytes to the new path.
  666.  
  667. INPUTS
  668.         info     - is  the  memory  address  you  got from the AllocCInfo()
  669.                    function.
  670.  
  671. OUTPUTS
  672.         success  - is an indicator that tells about the operation. If every
  673.                    thing is okay, a non-zero value is returned, else a zero
  674.                    will  be  returned. If you get an error, you can look at
  675.                    the  UI_ErrorNum  flag in the info structure to see what
  676.                    went wrong.
  677.  
  678. BUGS
  679.         The  DMS Deep decruncher will not work correctly. I try to fix this
  680.         bug as soon as possible.
  681.  
  682. SEE ALSO
  683.         DetermineFile(), AllocCInfo()
  684.  
  685. ---------------------------------------------------------------------------
  686.  
  687. UnpackList(34.1)                                           UnpackList(34.1)
  688.  
  689.  
  690. NAME
  691.         UnpackList - makes an unpacker name list.
  692.  
  693. SYNOPSIS
  694.         name = UnpackList (info)
  695.          A1       -66       A0
  696.  
  697.         char * UnpackList (APTR);
  698.  
  699. FUNCTION
  700.         UnpackList()  gives  a  pointer  to  the first name to a packer the
  701.         library  can  determine & unpack. You can use this function, if you
  702.         want  to  make  a  list  over  all  the  unpackers  the library can
  703.         determine. Call this function first and then use UnpackListNext().
  704.  
  705. INPUTS
  706.         info - is   the  memory  address  you  got  from  the  AllocCInfo()
  707.                function.
  708.  
  709. OUTPUTS
  710.         name - is  a  pointer  to  a null-terminated string where the first
  711.                name are stored.
  712.  
  713. BUGS
  714.         None known.
  715.  
  716. SEE ALSO
  717.         UnpackListNext()
  718.  
  719. ---------------------------------------------------------------------------
  720.  
  721. UnpackListNext(34.1)                                   UnpackListNext(34.1)
  722.  
  723.  
  724. NAME
  725.         UnpackListNext - reads the next name in the unpacker list.
  726.  
  727. SYNOPSIS
  728.         success,name = UnpackListNext (info)
  729.           D0     A1         -72         A0
  730.  
  731.         APTR UnpackListNext (APTR);
  732.  
  733. FUNCTION
  734.         UnpackListNext()  gives  a pointer to the next name to a packer the
  735.         library  can  determine & unpack. You can use this function, if you
  736.         want  to  make  a  list  over  all  the  unpackers  the library can
  737.         determine.  Call  the UnpackList() function first and then use this
  738.         function.
  739.  
  740. INPUTS
  741.         info    - is  the  memory  address  you  got  from the AllocCInfo()
  742.                   function.
  743.  
  744. OUTPUTS
  745.         name    - is  a  pointer to a null-terminated string where the next
  746.                   name are stored.
  747.  
  748.                   V37.32
  749.                   ------
  750.  
  751.                   This  pointer will also be zero when the success flag are
  752.                   zero. This are only made for C-programmers.
  753.  
  754.         success - if  this  contains a zero, there are no more crunchers in
  755.                   the list. Otherwise it will contain a non-zero value.
  756.  
  757. BUGS
  758.         None known.
  759.  
  760. SEE ALSO
  761.         UnpackList()
  762.  
  763. ---------------------------------------------------------------------------
  764.  
  765. UnuseDrive(36.30)                                         UnuseDrive(36.30)
  766.  
  767.  
  768. NAME
  769.         UnuseDrive - give back the drive to DOS.
  770.  
  771. SYNOPSIS
  772.         UnuseDrive (dinfo)
  773.            -96       A0
  774.  
  775.         void UnuseDrive (APTR);
  776.  
  777. FUNCTION
  778.         This function closes the device again and make the drive unbusy.
  779.  
  780. INPUTS
  781.         dinfo - is the pointer returned by the UseDrive() function.
  782.  
  783. OUTPUTS
  784.         Nothing.
  785.  
  786. BUGS
  787.         None known.
  788.  
  789. SEE ALSO
  790.         UseDrive(), SendCmd()
  791.  
  792. ---------------------------------------------------------------------------
  793.  
  794. UseDrive(36.30)                                             UseDrive(36.30)
  795.  
  796.  
  797. NAME
  798.         UseDrive - make a drive busy and ready for use.
  799.  
  800. SYNOPSIS
  801.         dinfo = UseDrive (info, drive)
  802.          D0       -90      A0     A1
  803.  
  804.         APTR UseDrive (APTR, char *);
  805.  
  806. FUNCTION
  807.         This  function  find out which device the drive given uses and open
  808.         it. Then it will make the drive busy, that means CLI/WorkBench will
  809.         not  be  able  to  use that drive until you unuse it. It's only you
  810.         that  can use it. This function are only made to give you a help to
  811.         write a track crunched-file saver.
  812.  
  813. INPUTS
  814.         info  - is  the  memory  address  you  got  from  the  AllocCInfo()
  815.                 function.
  816.  
  817.         drive - is a pointer to the drive you want to use, ex. DF0:, RAD:.
  818.  
  819. OUTPUTS
  820.         dinfo - is  a  pointer  to  a  structure  used  by the device. This
  821.                 structure  includes a IOStdReq structure and a message port
  822.                 structure.  If  you  get  a zero back, an error occurs. You
  823.                 can see in the UI_ErrorNum field to see want went wrong.
  824.  
  825. BUGS
  826.         None known.
  827.  
  828. SEE ALSO
  829.         UnuseDrive(), SendCmd()
  830.  
  831. ---------------------------------------------------------------------------
  832.  
  833.         I  really  hope  you  can use this library. See also the Unpack.IFF
  834.         file to see how to construct your program.
  835.  
  836.         If  you  find any bugs in the library or if you have some crunchers
  837.         there  are  not  in  the  library,  please send a bug report or the
  838.         crunchers to me, thanks! See in the "WantedHelp" for more info!
  839.  
  840.  
  841.    WE NEED YOUR HELP TO GET THIS LIBRARY EVEN BETTER, THANK YOU VERY MUCH!
  842.  
  843.  
  844.         Thomas Neumann       Member of the SHI Anti Virus Group.
  845.         Kongensgade 78
  846.         3550 Slangerup
  847.         Denmark
  848.